Current File : /home/jeconsul/public_html/wp-content/plugins/siteseo/main/import.php |
<?php
/*
* SITESEO
* https://siteseo.io
* (c) SiteSEO Team
*/
namespace SiteSEO;
if(!defined('ABSPATH')){
die('HACKING ATTEMPT!');
}
class Import{
static function rank_math(){
$imported_count = 0;
$log = [];
$posts = get_posts(['posts_per_page' => -1, 'post_type' => 'any', 'post_status' => 'any']);
foreach($posts as $post){
$robots = get_post_meta($post->ID, 'rank_math_robots', true);
$robots_array = is_array($robots) ? $robots : [];
$meta_mapping = [
'_siteseo_titles_title' => get_post_meta($post->ID, 'rank_math_title', true),
'_siteseo_titles_desc' => get_post_meta($post->ID, 'rank_math_description', true),
'_siteseo_social_fb_title' => get_post_meta($post->ID, 'rank_math_facebook_title', true),
'_siteseo_social_fb_desc' => get_post_meta($post->ID, 'rank_math_facebook_description', true),
'_siteseo_social_fb_img' => get_post_meta($post->ID, 'rank_math_facebook_image', true),
'_siteseo_social_twitter_title' => get_post_meta($post->ID, 'rank_math_twitter_title', true),
'_siteseo_social_twitter_description' => get_post_meta($post->ID, 'rank_math_twitter_description', true),
'_siteseo_social_twitter_img' => get_post_meta($post->ID, 'rank_math_twitter_image', true),
'_siteseo_robots_index' => in_array('noindex', $robots_array) ? '1' : '',
'_siteseo_robots_follow' => in_array('nofollow', $robots_array) ? '1' : '',
'_siteseo_robots_imageindex' => in_array('noimageindex', $robots_array) ? '1' : '',
'_siteseo_robots_archive' => in_array('noarchive', $robots_array) ? '1' : '',
'_siteseo_robots_snippet' => in_array('nosnippet', $robots_array) ? '1' : '',
'_siteseo_robots_canonical' => get_post_meta($post->ID, 'rank_math_canonical_url', true),
'_siteseo_analysis_target_kw' => get_post_meta($post->ID, 'rank_math_focus_keyword', true),
'_siteseo_robots_primary_cat' => get_post_meta($post->ID, 'rank_math_primary_category', true)
];
foreach($meta_mapping as $siteseo_key => $value){
if(!empty($value)){
update_post_meta($post->ID, $siteseo_key, $value);
$imported_count++;
}
}
$log[] = "Imported post ID: {$post->ID}";
}
return [
'count' => $imported_count,
'log' => $log,
/* translators: %d count of items imported */
'message' => sprintf(__('Rank Math import completed. Imported %d items.', 'siteseo'), $imported_count)
];
}
static function yoast_seo(){
$imported_count = 0;
$log = [];
$posts = get_posts(['posts_per_page' => -1, 'post_type' => 'any', 'post_status' => 'any']);
foreach($posts as $post){
$yoast_robots = get_post_meta($post->ID, '_yoast_wpseo_meta-robots-adv', true);
$robots_array = $yoast_robots ? explode(',', $yoast_robots) : [];
$meta_mapping = [
'_siteseo_titles_title' => get_post_meta($post->ID, '_yoast_wpseo_title', true),
'_siteseo_titles_desc' => get_post_meta($post->ID, '_yoast_wpseo_metadesc', true),
'_siteseo_social_fb_title' => get_post_meta($post->ID, '_yoast_wpseo_opengraph-title', true),
'_siteseo_social_fb_desc' => get_post_meta($post->ID, '_yoast_wpseo_opengraph-description', true),
'_siteseo_social_fb_img' => get_post_meta($post->ID, '_yoast_wpseo_opengraph-image', true),
'_siteseo_social_twitter_title' => get_post_meta($post->ID, '_yoast_wpseo_twitter-title', true),
'_siteseo_social_twitter_description' => get_post_meta($post->ID, '_yoast_wpseo_twitter-description', true),
'_siteseo_social_twitter_img' => get_post_meta($post->ID, '_yoast_wpseo_twitter-image', true),
'_siteseo_robots_index' => get_post_meta($post->ID, '_yoast_wpseo_meta-robots-noindex', true) ? '1' : '',
'_siteseo_robots_follow' => get_post_meta($post->ID, '_yoast_wpseo_meta-robots-nofollow', true) ? '1' : '',
'_siteseo_robots_imageindex' => in_array('noimageindex', $robots_array) ? '1' : '',
'_siteseo_robots_archive' => in_array('noarchive', $robots_array) ? '1' : '',
'_siteseo_robots_snippet' => in_array('nosnippet', $robots_array) ? '1' : '',
'_siteseo_robots_canonical' => get_post_meta($post->ID, '_yoast_wpseo_canonical', true),
'_siteseo_analysis_target_kw' => get_post_meta($post->ID, '_yoast_wpseo_focuskw', true),
'_siteseo_robots_primary_cat' => get_post_meta($post->ID, '_yoast_wpseo_primary_category', true)
];
foreach($meta_mapping as $siteseo_key => $value){
if(!empty($value)){
update_post_meta($post->ID, $siteseo_key, $value);
$imported_count++;
}
}
$log[] = "Imported post ID: {$post->ID}";
}
return [
'count' => $imported_count,
'log' => $log,
/* translators: %d count of items imported */
'message' => sprintf(__('Yoast SEO import completed. Imported %d items.', 'siteseo'), $imported_count)
];
}
static function aio_seo(){
$imported_count = 0;
$log = [];
$posts = get_posts(['posts_per_page' => -1, 'post_type' => 'any', 'post_status' => 'any']);
foreach($posts as $post){
$meta_mapping = [
'_siteseo_titles_title' => get_post_meta($post->ID, '_aioseo_title', true),
'_siteseo_titles_desc' => get_post_meta($post->ID, '_aioseo_description', true),
'_siteseo_social_fb_title' => get_post_meta($post->ID, '_aioseo_og_title', true),
'_siteseo_social_fb_desc' => get_post_meta($post->ID, '_aioseo_og_description', true),
'_siteseo_social_fb_img' => get_post_meta($post->ID, '_aioseo_og_image', true),
'_siteseo_social_twitter_title' => get_post_meta($post->ID, '_aioseo_twitter_title', true),
'_siteseo_social_twitter_description' => get_post_meta($post->ID, '_aioseo_twitter_description', true),
'_siteseo_social_twitter_img' => get_post_meta($post->ID, '_aioseo_twitter_image', true),
'_siteseo_robots_index' => get_post_meta($post->ID, '_aioseo_noindex', true) ? '1' : '',
'_siteseo_robots_follow' => get_post_meta($post->ID, '_aioseo_nofollow', true) ? '1' : '',
'_siteseo_robots_imageindex' => '1',
'_siteseo_robots_archive' => '1',
'_siteseo_robots_snippet' => '1', // Default to 1 if not specified
'_siteseo_robots_canonical' => get_post_meta($post->ID, '_aioseo_canonical_url', true),
'_siteseo_analysis_target_kw' => get_post_meta($post->ID, '_aioseo_keywords', true)
];
foreach($meta_mapping as $siteseo_key => $value){
if(!empty($value)){
update_post_meta($post->ID, $siteseo_key, $value);
$imported_count++;
}
}
$log[] = "Imported post ID: {$post->ID}";
}
return [
'count' => $imported_count,
'log' => $log,
/* translators: %d count of items imported */
'message' => sprintf(__('All In One SEO import completed. Imported %d items.', 'siteseo'), $imported_count)
];
}
static function seo_framework(){
$imported_count = 0;
$log = [];
$posts = get_posts(['posts_per_page' => -1, 'post_type' => 'any', 'post_status' => 'any']);
foreach($posts as $post){
$meta_mapping = [
'_siteseo_titles_title' => get_post_meta($post->ID, '_genesis_custom_title', true),
'_siteseo_titles_desc' => get_post_meta($post->ID, '_genesis_description', true),
'_siteseo_social_fb_title' => get_post_meta($post->ID, '_open_graph_title', true),
'_siteseo_social_fb_desc' => get_post_meta($post->ID, '_open_graph_description', true),
'_siteseo_social_fb_img' => get_post_meta($post->ID, '_social_image_url', true),
'_siteseo_social_twitter_title' => get_post_meta($post->ID, '_twitter_title', true),
'_siteseo_social_twitter_description' => get_post_meta($post->ID, '_twitter_description', true),
'_siteseo_social_twitter_img' => get_post_meta($post->ID, '_twitter_image', true),
'_siteseo_robots_index' => get_post_meta($post->ID, '_genesis_noindex', true) ? '1' : '',
'_siteseo_robots_follow' => get_post_meta($post->ID, '_genesis_nofollow', true) ? '1' : '',
'_siteseo_robots_imageindex' => '1',
'_siteseo_robots_archive' => '1',
'_siteseo_robots_snippet' => '1',
'_siteseo_robots_canonical' => get_post_meta($post->ID, '_genesis_canonical_uri', true),
'_siteseo_analysis_target_kw' => get_post_meta($post->ID, '_genesis_keywords', true)
];
foreach($meta_mapping as $siteseo_key => $value){
if(!empty($value)){
update_post_meta($post->ID, $siteseo_key, $value);
$imported_count++;
}
}
$log[] = "Imported post ID: {$post->ID}";
}
return [
'count' => $imported_count,
'log' => $log,
/* translators: %d count of items imported */
'message' => sprintf(__('SEO Framework import completed. Imported %d items.', 'siteseo'), $imported_count)
];
}
static function seo_press(){
$imported_count = 0;
$log = [];
$posts = get_posts(['posts_per_page' => -1, 'post_type' => 'any', 'post_status' => 'any']);
foreach($posts as $post){
$robots_index = get_post_meta($post->ID, '_seopress_robots_index', true);
$robots_follow = get_post_meta($post->ID, '_seopress_robots_follow', true);
$robots_imageindex = get_post_meta($post->ID, '_seopress_robots_imageindex', true);
$robots_archive = get_post_meta($post->ID, '_seopress_robots_archive', true);
$meta_mapping = [
'_siteseo_titles_title' => get_post_meta($post->ID, '_seopress_titles_title', true),
'_siteseo_titles_desc' => get_post_meta($post->ID, '_seopress_titles_desc', true),
'_siteseo_social_fb_title' => get_post_meta($post->ID, '_seopress_social_fb_title', true),
'_siteseo_social_fb_desc' => get_post_meta($post->ID, '_seopress_social_fb_desc', true),
'_siteseo_social_fb_img' => get_post_meta($post->ID,'_seopress_social_fb_img',true),
'_siteseo_social_twitter_title' => get_post_meta($post->ID, '_seopress_social_twitter_title', true),
'_siteseo_social_twitter_description' => get_post_meta($post->ID, '_seopress_social_twitter_desc', true),
'_siteseo_social_twitter_img' => get_post_meta($post->ID, '_seopress_social_twitter_img', true),
'_siteseo_robots_index' => (!empty($robots_index) && $robots_index === 'yes') ? '1' : '0',
'_siteseo_robots_follow' => (!empty($robots_follow) && $robots_follow === 'yes') ? '1' : '0',
'_siteseo_robots_imageindex' => (!empty($robots_imageindex) && $robots_imageindex === 'yes') ? '1' : '0',
'_siteseo_robots_archive' => (!empty($robots_archive) && $robots_archive === 'yes') ? '1' : '0',
'_siteseo_robots_snippet' => get_post_meta($post->ID, '_seopress_robots_snippet', true),
'_siteseo_robots_canonical' => get_post_meta($post->ID, '_seopress_robots_canonical', true),
'_siteseo_analysis_target_kw' => get_post_meta($post->ID, '_seopress_analysis_target_kw', true),
'_siteseo_redirections_enabled' => get_post_meta($post->ID, '_seopress_redirections_enabled', true) ? '1' : '0',
'_siteseo_redirections_value' => get_post_meta($post->ID, '_seopress_redirections_value', true),
'_siteseo_redirections_type' => get_post_meta($post->ID, '_seopress_redirections_type', true),
'_siteseo_redirections_param' => get_post_meta($post->ID, '_seopress_redirections_param', true),
'_siteseo_redirections_logged_status' => get_post_meta($post->ID, '_seopress_redirections_logged_status', true),
'_siteseo_redirections_enabled_regex' => get_post_meta($post->ID, '_seopress_redirections_enabled_regex', true),
];
foreach($meta_mapping as $siteseo_key => $value){
if(!empty($value)){
update_post_meta($post->ID, $siteseo_key, $value);
$imported_count++;
}
}
$log[] = "Imported post ID: {$post->ID}";
}
return [
'count' => $imported_count,
'log' => $log,
/* translators: %d count of items imported */
'message' => sprintf(__('SEOPress migration completed. Imported %d items.', 'siteseo'), $imported_count)
];
}
}